home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / sound.sql < prev    next >
Text File  |  2000-05-12  |  799b  |  21 lines

  1. /* RCSVER $Id: sound.sql,v 1.4 2000-02-03 11:53:38-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        sound.sql   
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the sound table. This table contains a mapping
  9. *        of sound classes to actual sounds at the farebox.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE sound
  13. (
  14.     sound_class    NUMBER(38),    /* Sound class */
  15.     actual_sound    NUMBER(38),    /* Actual sound assigned to sound class */
  16.     config_num    NUMBER(38)
  17.         CONSTRAINT ref1_sound REFERENCES configset(num)
  18.         ON DELETE CASCADE,
  19.     CONSTRAINT pk_sound PRIMARY KEY (sound_class, config_num)
  20. );
  21.